'Declaration Public Shared Function CreateInsertItemEventArgs( _
ByVal indexIndex at which the item was added to the collection.As System.Int32, _
ByVal itemInserted item.As T _
) As CollectionChangeEventArgs(Of T)
public static CollectionChangeEventArgs<T> CreateInsertItemEventArgs(
System.Int32 index,
T item
)
public: static CollectionChangeEventArgs<T*>* CreateInsertItemEventArgs(
System.Int32 index,
T* item
)
public:
static CollectionChangeEventArgs<T^>^ CreateInsertItemEventArgs(
System.Int32 index,
T^ item
)
Parameters
- index
- Index at which the item was added to the collection.
- item
- Inserted item.
Return Value
An instance of the CollectionChangeEventArgs<T> class for CollectionChangeActionType.InsertItem action.